home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games Central GT Digital… Q1 Premier Trimestre '99
/
GAME_CENTRAL.ISO
/
pc
/
data
/
aladdin.cst
/
00028_Script_text Copy Xtra - do not change
< prev
next >
Wrap
Text File
|
1999-04-27
|
1KB
|
38 lines
on textcopy
gamecheck
if the platform contains "Mac" then
mactextcopy
else
openXLib "Xtras\filecopy" -- custom xtra
set filename = the pathName&"text\"&the name of cast the mousecast
if fileName > "" then
set wFileName = doSaveAsDlg(the pathName&"text\"&the name of cast the mousecast, "Word@*.rtf")
if wFileName > "" then
set result = copyFile(wFileName, fileName) -- this is the call that does the copying
put result
end if
end if
closeXLib "Xtras\filecopy"
end if
end
on mactextcopy
openXLib ":Xtras:macxtra:filecopy" -- custom xtra
set fileName = the pathName&"text:"&the name of cast the mousecast -- Display Open Dialog and return the fileName
if fileName > "" then
put filename
set loc = "desktop folder:"
set wFileName = doSaveAsDlg(loc&the name of cast the mousecast, "word files@*.rtf")
if wFileName > "" then
put wfilename
set result = copyFile(wFileName, fileName) -- this is the call that does the copying
put result
end if
end if
closeXLib ":Xtras:macxtra:filecopy"
abort
end